home *** CD-ROM | disk | FTP | other *** search
- property clicked, movieChoice
-
- on mouseDown me
- set the clicked of me to 1
- puppetSound("mouseDown.aif")
- end
-
- on mouseUp me
- if the clicked of me then
- case the spriteNum of me of
- 10:
- backToMain()
- 11:
- showSndCntrl()
- 12:
- printButton()
- end case
- end if
- set the clicked of me to 0
- end
-
- on mouseUpOutSide me
- set the clicked of me to 0
- end
-
- on beginSprite me
- set the clicked of me to 0
- end
-
- on getBehaviorDescription
- return "Main button action on mouseUp, based on channel number." & RETURN & "Works only if mouseDown occured on this sprite."
- end
-